home *** CD-ROM | disk | FTP | other *** search
/ AMIGA-CD 2 / Amiga-CD - Volume 2.iso / ungepackte_daten / 1994 / 6 / 01 / mini-compiler / mini.ampk / Mini-Compiler / TDS / src / main.c next >
Encoding:
C/C++ Source or Header  |  1995-06-01  |  232 b   |  17 lines

  1. /* main.c */
  2.  
  3. #include <stdio.h>
  4.  
  5. extern int print(char *name);
  6.  
  7. void
  8. main(int argc,char *argv[])
  9. {
  10.   if (argc < 2)
  11.     puts("Usage: print <name>");
  12.   else if (print(argv[1]) == 0)
  13.     printf("Couldn't open file %s\n",argv[1]);
  14. }
  15.  
  16.  
  17.